home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 119
/
(Vol 119) Nov 09 2010.iso
/
Games
/
tobby_ura_ura.swf
/
scripts
/
DefineSprite_89
/
frame_1
/
DoAction.as
Wrap
Text File
|
2010-11-09
|
477b
|
25 lines
function alg()
{
var d = Math.cos(this.Angle * 3.141592653589793 / 180) * this.amp;
if(this.moveUDflg == true)
{
this.py += d;
}
if(this.moveLRflg == true)
{
this.px += d;
}
this.Angle += this.speed;
this.Angle %= 360;
if(this.hitTest(_root.tobbyMC.hitdummyMC))
{
_root.tobbyMC.miss();
}
if(this.hitTest(_root.handMC))
{
_root.handMC.miss();
}
}
this.py = this._y;
this.px = this._x;